home *** CD-ROM | disk | FTP | other *** search
/ Pluspack 1 / Caligari Corporation Pluspack1 1998.iso / TSX_SDK / tsxINC / ItsxView.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-01-28  |  1.8 KB  |  55 lines

  1. //******************************************************************************
  2. //    File: ItsxView.h
  3. //  Module: trueSpace eXtensions API
  4. //   Descr: Declarations for the ItsxView COM interface
  5. //******************************************************************************
  6.  
  7.  
  8. #ifndef ITSXVIEW_H
  9. #define ITSXVIEW_H
  10.  
  11.  
  12. #include "itsxcommon.h"
  13. #include "tsxcomtypes.h"
  14.  
  15.  
  16. #undef INTERFACE
  17. #define INTERFACE ItsxView
  18.  
  19. DECLARE_INTERFACE_(ItsxView, IUnknown)
  20. {
  21.     // IUnknown members
  22.     STDMETHOD(QueryInterface) (THIS_ REFIID, PPVOID) PURE;
  23.     STDMETHOD_(ULONG, AddRef)  (THIS) PURE;
  24.     STDMETHOD_(ULONG, Release) (THIS) PURE;
  25.  
  26.     // ItsxView members
  27.     STDMETHOD(Draw) (THIS) PURE;
  28.     STDMETHOD(Render) (THIS) PURE;
  29.     STDMETHOD(DrawActive) (THIS) PURE;
  30.     STDMETHOD(RenderActive) (THIS) PURE;
  31.     STDMETHOD(GetHwnd) (THIS_ HWND* Handle) PURE;
  32.     STDMETHOD(GetPosition) (THIS_ tsxVector*) PURE;
  33.     STDMETHOD(SetPosition) (THIS_ tsxVector*) PURE;
  34.     STDMETHOD(GetDirection) (THIS_ tsxVector*) PURE;
  35.     STDMETHOD(SetDirection) (THIS_ tsxVector*) PURE;
  36.     STDMETHOD(LookAt) (THIS_ tsxVector*) PURE;
  37.     STDMETHOD(GetBankAngle) (THIS_ float*) PURE;
  38.     STDMETHOD(SetBankAngle) (THIS_ float) PURE;
  39.     STDMETHOD(GetZoom) (THIS_ float*) PURE;
  40.     STDMETHOD(SetZoom) (THIS_ float) PURE;
  41.     STDMETHOD(GetWorldToEyeMatrix) (THIS_ tsxMatrix*) PURE;
  42.     STDMETHOD(GetEyeToWorldMatrix) (THIS_ tsxMatrix*) PURE;
  43.     STDMETHOD(GetWorldToViewportMatrix) (THIS_ tsxMatrix*) PURE;
  44.     STDMETHOD(GetMouseRay) (THIS_ short, short, tsxVector*, tsxVector*) PURE;
  45. };
  46.  
  47. // typedef a pointer to this interface
  48. typedef ItsxView* PITSXVIEW;
  49.  
  50. // define a GUID for this interface
  51. // {5DFAD700-4616-11d1-A255-006097D15F58}
  52. DEFINE_GUID(IID_ItsxView, 0x5dfad700, 0x4616, 0x11d1, 0xa2, 0x55, 0x0, 0x60, 0x97, 0xd1, 0x5f, 0x58);
  53.  
  54.  
  55. #endif // ITSXVIEW_H